projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fa2940
)
win32: fix the build
author
Matthias Clasen
<mclasen@redhat.com>
Thu, 3 Jul 2014 12:12:56 +0000
(08:12 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Thu, 3 Jul 2014 12:13:29 +0000
(08:13 -0400)
A recent cleanup gone wrong,
https://bugzilla.gnome.org/show_bug.cgi?id=732454
gdk/win32/gdkevents-win32.c
patch
|
blob
|
history
diff --git
a/gdk/win32/gdkevents-win32.c
b/gdk/win32/gdkevents-win32.c
index f3b7dc2033193500d6a29125635dae730e40dc6b..5a4efee838eb77557ed499ab6be3465542043f99 100644
(file)
--- a/
gdk/win32/gdkevents-win32.c
+++ b/
gdk/win32/gdkevents-win32.c
@@
-1528,11
+1528,10
@@
handle_wm_paint (MSG *msg,
hdc = BeginPaint (msg->hwnd, &paintstruct);
- GDK_NOTE (EVENTS, g_print (" %s %s dc %p
%s
",
+ GDK_NOTE (EVENTS, g_print (" %s %s dc %p",
_gdk_win32_rect_to_string (&paintstruct.rcPaint),
(paintstruct.fErase ? "erase" : ""),
- hdc,
- (return_exposes ? " return_exposes" : "")));
+ hdc));
EndPaint (msg->hwnd, &paintstruct);